home *** CD-ROM | disk | FTP | other *** search
- {$A+,B-,D+,E+,F-,G+,I+,L+,N-,O-,P-,Q-,R-,S+,T-,V+,X+}
- {$M 16384,0,655360}
-
- {
- 2ND.PAS
- Sample program of simple sprite loading.
- (16 colors only to avoid palette loading!)
- Cherry sprite courtesy of Cherry Mania (c) InterAction software
- }
-
- uses crt,uve32;
-
- begin
- ia_inituve;
- ia_loadspr('cherry.uvs',1);
- ia_powerup;
- spr[1].n:=1;
- repeat
- ia_doframe;
- until keypressed;
- ia_shutdown;
- end.